home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 92 / DPPCZ0800.7z / DPPCZ0800.ISO / Demos / Star Trek - Armada / armada_demo.exe / data / game_cfg.h < prev    next >
Text File  |  1999-12-29  |  2KB  |  47 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // GAME_CFG.h
  4. //
  5. // Runtime configuration file for general engine parameters
  6. //
  7. // -- M Douglas
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10.  
  11.  
  12. // Location of Mission files
  13. char MISSIONS_DIRECTORY[256] = ".\missions";
  14. char AI_DIRECTORY[256] = ".\AI";
  15.  
  16. // Game tracking information.
  17. char WATCH_LOCATION[512] = "\\NULL";
  18. char WATCH_VERSION[64] = "v0_0";
  19.  
  20. // Location of buttons in interface.
  21. int BUTTON_LOCATION_TRANSPORT                    = -1;
  22. int BUTTON_LOCATION_RESEARCH_UPGRADE            = -1;
  23. int BUTTON_LOCATION_MOVE                        = 1;
  24. int BUTTON_LOCATION_ATTACK                        = 2;
  25. int BUTTON_LOCATION_STOP                        = 3;
  26. int BUTTON_LOCATION_ORDER_REPAIR                = 4;
  27. int BUTTON_LOCATION_ORDERS                        = 5;
  28. int BUTTON_LOCATION_ORDER_STAND_DOWN            = 6;
  29. int BUTTON_LOCATION_TRANSPORT_SPECIAL            = 8;
  30. int BUTTON_LOCATION_HARVEST                        = 7;
  31. int BUTTON_LOCATION_RECREW                        = 7;
  32. int BUTTON_LOCATION_UPGRADE                        = 9;
  33. int BUTTON_LOCATION_BUILD                        = 10;
  34. int    BUTTON_LOCATION_RALLY_POINT                    = 11;
  35.  
  36. int BUTTON_LOCATION_ORDER_GREEN_ALERT            = 1;
  37. int BUTTON_LOCATION_ORDER_YELLOW_ALERT            = 2;
  38. int BUTTON_LOCATION_ORDER_RED_ALERT                = 3;
  39. int BUTTON_LOCATION_ORDER_PATROL                = 4;
  40. int BUTTON_LOCATION_ORDER_SCOUT                    = 5;
  41. int BUTTON_LOCATION_ORDER_SEARCH_AND_DESTROY    = 6;
  42. int BUTTON_LOCATION_ORDER_GUARD                    = 7;
  43. int BUTTON_LOCATION_ORDER_DECOMMISION            = 10;
  44. int BUTTON_LOCATION_ORDER_SELF_DESTRUCT            = 11;
  45. int BUTTON_LOCATION_CANCEL                        = 11;
  46. int BUTTON_LOCATION_BACK                        = 12;
  47.